home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Interactive CD Sampler / Microsoft Interactive CD Sampler.iso / DEMOS / BOOKS / BKSHELF.DIR / 00029.ls < prev    next >
Encoding:
Text File  |  1996-07-19  |  588 b   |  31 lines

  1. global paused
  2.  
  3. on mouseDown
  4.   if paused then
  5.     repeat while the stillDown
  6.       set the memberNum of sprite 12 to 81
  7.       updateStage()
  8.     end repeat
  9.   else
  10.     sound stop 1
  11.     repeat while the stillDown
  12.       set the memberNum of sprite 12 to 77
  13.       updateStage()
  14.     end repeat
  15.   end if
  16. end
  17.  
  18. on mouseUp
  19.   if not paused then
  20.     set the soundEnabled to 0
  21.     set paused to 1
  22.     set the memberNum of sprite 12 to 71
  23.   else
  24.     set the soundEnabled to 1
  25.     set the volume of sound 1 to 255
  26.     set paused to 0
  27.     set the memberNum of sprite 12 to 67
  28.   end if
  29.   updateStage()
  30. end
  31.